home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / stack / xcovf.c < prev   
C/C++ Source or Header  |  1995-05-23  |  224b  |  11 lines

  1. #include <dos/dos.h>
  2. #include <stdlib.h>
  3.  
  4. extern int __request_msg (const char *msg, const char *button);
  5.  
  6. void _XCOVF(void) /* stack overflow handler */
  7. {
  8.   __request_msg ("Stack overflow", "Abort");
  9.   exit(RETURN_FAIL);
  10. }
  11.